home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
dev
/
amos
/
amosprog.lha
/
CheckSYS.AMOS
/
CheckSYS.amosSourceCode
< prev
Wrap
AMOS Source Code
|
1995-03-15
|
1KB
|
44 lines
'*********************************
'* CHECK SYSTEM ^V 1.0 *
'*-------------------------------*
'* (c) Marcin Szumiela 1995 *
'*********************************
Hide : Curs Off
'--------------------------------
' Uruchamiam ASM/ D0 = x -> 680x0
'--------------------------------
Call 11
Print 'Procesor Motorola 680'+(Str$(Dreg(0))-' ')+'0'
'--------------------------------
' Sprawdzam istnienie AGA
'--------------------------------
If Deek($DFF07C)=$F8
Print 'Ko�ci AGA znalezione...'
Else Print 'Nie znalaz�em Ko�ci AGA...'
End If
'--------------------------------
' Sprawdzam wersj� romu
'--------------------------------
LIBNOP=70
On Error Goto KONIEC
Lib Open 1,'dos.library',LIBNOP
Goto DALEJ
KONIEC:
Dec LIBNOP
Resume
DALEJ:
Lib Close 1
Print 'Wersja ROM #'+(Str$(LIBNOP)-' ')
'--------------------------------
' Check Fast
'--------------------------------
If Fast Free>0
Print 'Wolny Fast $C00000'+Str$(Fast Free/1024)+' KB'
Else
Print 'Fast nie znaleziony ...'
End If
Print 'Wolny Chip $000000'+Str$(Chip Free/1024)+' KB'
'--------------------------------
' Koniec
'--------------------------------
Wait Key